home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / BTRVEX.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1989-08-07  |  2.1 KB  |  52 lines

  1.     You are about to try BTRV Express, a library for Microsoft C
  2.     users that greatly simplifies access to Btrieve.  No more position
  3.     blocks!  No more passing parameters just to fill the call!  BTRV
  4.     Express routines all work from the file name and a record pointer.
  5.     Only those parameters needed for the call are passed.
  6.  
  7.     Try out the library.  You have the full documentation.  This OBJ file
  8.     must be linked with MSCXBTRV (provided with Btrieve) to interface
  9.     correctly.  It is for use with SMALL model programs.  This demo
  10.     version will manage up to two open Btrieve files.  The full version
  11.     comes ready to manage 10 files but can be easily modified to manage up
  12.     to 255.
  13.  
  14.     Registration for BTRV Express Costs $75.  For this price, you get
  15.     fully commented source code, a Norton Guides Database (without the
  16.     engine) listing all BTRV Express functions, and a menu-driven utility
  17.     to create Btrieve files without using scripts.
  18.  
  19.     There is a version of BTRV Express for Borland's Turbo C version 1.5
  20.     and up. Please specify your compiler when ordering (Microsoft V5.0 or
  21.     Borland Turbo C 1.5).  Other compilers may be supported but since I
  22.     don't own them, I can't test them.
  23.  
  24.     To register send a check or money order for $75 to:
  25.  
  26.                              Srebnick Micro Consulting
  27.                                   6 Kelly Road
  28.                                Hamden, CT  06518
  29.                                  (203) 248-6559
  30.  
  31.  
  32.  
  33.  
  34.     Using the sample programs:
  35.  
  36.     The four sample programs will create a Btrieve file, load it with a
  37.     list of states and their telephone area codes and then search for data
  38.     or print lists.
  39.  
  40.     ACREATE: creates the Btrieve file and loads the data from AREACODE.TXT
  41.     AFIND  : prompts the user for an area code and returns the state
  42.     ASTATE : prompts for a state and returns all area codes in the state
  43.     AREPORT: lists states and area codes in numeric order and state order
  44.  
  45.  
  46.     To use:
  47.  
  48.          cl /c /AS /Zp ACREATE.C
  49.          link ACREATE+MSCXBTRV+BTRVEXPS;
  50.  
  51.  
  52.